home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / VENKMAN.XPI / bin / chrome / venkman.jar / content / venkman / html-consts.js < prev    next >
Encoding:
Text File  |  2004-04-18  |  4.1 KB  |  147 lines

  1. /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  *
  3.  * ***** BEGIN LICENSE BLOCK *****
  4.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public License Version
  7.  * 1.1 (the "License"); you may not use this file except in compliance with
  8.  * the License. You may obtain a copy of the License at
  9.  * http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS IS" basis,
  12.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  * for the specific language governing rights and limitations under the
  14.  * License.
  15.  *
  16.  * The Original Code is The JavaScript Debugger.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 1998
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *   Robert Ginda, <rginda@netscape.com>, original author
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. const NS_XHTML   = "http://www.w3.org/1999/xhtml";
  41.  
  42. const HTML_BR    = "html:br";
  43. const HTML_IMG   = "html:img";
  44. const HTML_SPAN  = "html:span";
  45. const HTML_TABLE = "html:table";
  46. const HTML_TBODY = "html:tbody";
  47. const HTML_TD    = "html:td";
  48. const HTML_TH    = "html:th";
  49. const HTML_TR    = "html:tr";
  50.  
  51. function HTML (tagName, attribs, args)
  52. {
  53.     var elem = document.createElementNS (NS_XHTML, tagName);    
  54.  
  55.     if (typeof attribs == "string")
  56.         elem.setAttribute ("class", attribs);
  57.     else if (attribs && typeof attribs == "object")
  58.         for (var p in attribs)
  59.             elem.setAttribute (p, attribs[p]);
  60.     
  61.     var start = 0;
  62.     
  63.     if (args)
  64.     {
  65.         if (!(args instanceof Array))
  66.             args = [args];
  67.         else if (arguments.length > 3)
  68.         {
  69.             start = 2; args = arguments;
  70.         }
  71.  
  72.         for (var i = start; i < args.length; ++i)
  73.             if (typeof args[i] == "string")
  74.                 elem.appendChild (document.createTextNode(args[i]));
  75.             else if (args[i])
  76.                 elem.appendChild (args[i]);
  77.         
  78.     }
  79.     
  80.     return elem;
  81. }
  82.  
  83. function htmlA(attribs, href, contents)
  84. {
  85.     if (typeof contents == "undefined")
  86.         contents = href;
  87.     
  88.     var a = HTML("html:a", attribs, contents);
  89.     a.setAttribute ("href", href);
  90.  
  91.     return a;
  92. }
  93.     
  94. function htmlBR(attribs)
  95. {
  96.     return HTML("html:br", attribs, argumentsAsArray(arguments, 1));
  97. }
  98.  
  99. function htmlWBR(attribs)
  100. {
  101.     return HTML("html:wbr", attribs, argumentsAsArray(arguments, 1));
  102. }
  103.     
  104. function htmlImg(attribs, src)
  105. {
  106.     var img = HTML("html:img", attribs, argumentsAsArray(arguments, 2));
  107.     if (src)
  108.         img.setAttribute ("src", src);
  109.     return img;
  110. }
  111.  
  112. function htmlSpan(attribs)
  113. {
  114.     return HTML("html:span", attribs, argumentsAsArray(arguments, 1));
  115. }
  116.  
  117. function htmlTable(attribs)
  118. {
  119.     return HTML("html:table", attribs, argumentsAsArray(arguments, 1));
  120. }
  121.  
  122. function htmlTBody(attribs)
  123. {
  124.     return HTML("html:tbody", attribs, argumentsAsArray(arguments, 1));
  125. }
  126.  
  127. function htmlText(text)
  128. {
  129.     return document.createTextNode(text);
  130. }
  131.  
  132. function htmlTD(attribs)
  133. {
  134.     return HTML("html:td", attribs, argumentsAsArray(arguments, 1));
  135. }
  136.  
  137. function htmlTR(attribs)
  138. {
  139.     return HTML("html:tr", attribs, argumentsAsArray(arguments, 1));
  140. }
  141.  
  142. function htmlTH(attribs)
  143. {
  144.     return HTML("html:th", attribs, argumentsAsArray(arguments, 1));
  145. }
  146.  
  147.